1
2
3
4
5
6
7
8
9 package ca.uhn.cache.internal.impl;
10
11 import junit.framework.TestCase;
12
13
14 /***
15 * Tests the methods of the interface <code>IChunkPurger</code> implemented by <code>HibernateChunkStore</code>.
16 *
17 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
18 * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:52:21 $ by $Author: bryan_tripp $
19 */
20 public class ChunkPurgerTest extends TestCase {
21
22
23
24
25 protected void setUp() throws Exception {
26 super.setUp();
27 }
28
29
30
31
32 protected void tearDown() throws Exception {
33 super.tearDown();
34 }
35
36 /***
37 */
38 public void test1() {
39
40
41
42
43
44
45
46
47
48 }
49
50 }